2024 数信杯 - 场景赛 - 数据备份
· 阅读需 19 分钟
2024 数信杯 - 数据安全综合场景赛 - 数据备份 题目分析
首先,服务器的环境没有任何作用,核心都在服务器上获取的两个样本
myback
202410311935.cbak
附件可以在 Release 附件下载 - Data-Backup.zip · CTF-Archives/2024-shuxincup 获取得到
一个是备份工具,一个是执行备份之后得到的被破坏的备份文件
首先,先尝试执行一下备份工具
┌──(randark ㉿ kali)-[~/tmp/2024sxb-1]
└─$ ./myback
Menu:
1. Backup File
2. Restore Files
3. Print Info
4. Exit
那么,根据比赛时的题目先完成一下题目
1. 版本信息
请选手分析备份恢复系统中的备份工具 myback 程序,获取备份工具的版本信息。
版本信息为一串类似
***.***.***
的字符串,注意星号不具有占位意义,不代表具体的字符串长度。【答案标准】例:若获取的版本信息为:123.456.789,则提交的 案为:123.456.789。
第一种做法,可以直接执行程序来获得
┌──(randark ㉿ kali)-[~/tmp/2024sxb-1]
└─$ ./myback
Menu:
1. Backup File
2. Restore Files
3. Print Info
4. Exit
Enter your choice: 3
Bcakup_programe version:3.85.4h6
This program is used for backing up and restoring files.
Choose 1 to back up files in the specified directory to the current program directory and output a cbak file.
Choose 2 to restore the specified backup file to the current program directory.
第二种方法,用 IDA 直接逆向分析
int __fastcall main(int argc, const char **argv, const char **envp)
{
int choice; // [rsp+14h] [rbp-Ch] BYREF
unsigned __int64 v5; // [rsp+18h] [rbp-8h]
v5 = __readfsqword(0x28u);
puts("Menu:");
puts("1. Backup File");
puts("2. Restore Files");
puts("3. Print Info");
puts("4. Exit");
printf("Enter your choice:");
__isoc99_scanf("%d", &choice);
if (choice == 4)
{
puts("Exiting program.");
exit(0);
}
if (choice> 4 )
goto LABEL_11;
switch (choice)
{
case 3:
print_info();
break;
case 1:
puts("Please enter the path of the directory to be backed up:");
__isoc99_scanf("%s", backup_file_dir);
backup_file(backup_file_dir);
break;
case 2:
puts("Please enter the backup file name to be restored:");
__isoc99_scanf("%s", restore_file);
restore_files(restore_file);
break;
default:
LABEL_11:
puts("Invalid choice. Please try again.");
return 0;
}
return 0;
}
一个简单的菜单逻辑,跟进 print_info()
函数
void __cdecl print_info()
{
printf("Bcakup_programe version:%s\n", "3.85.4h6");
puts("This program is used for backing up and restoring files.");
puts("Choose 1 to back up files in the specified directory to the current program directory and output a cbak file.");
puts("Choose 2 to restore the specified backup file to the current program directory.");
}
同样可以得到答案
3.85.4h6